home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / DOS.MAK < prev    next >
Makefile  |  1997-06-09  |  810b  |  38 lines

  1.  
  2. TARGNAME = cldos
  3.  
  4. i386 = -Di386=1 -DCFLAGS=-DNONRECURSIVE
  5.  
  6. #LIBLOG = ..\lib.log
  7. LIBLIST = ..\object\lib386.lst
  8. LIBLOG = con:
  9.  
  10. all:
  11.     cd alloc
  12.     del $(LIBLIST)
  13. #    del $(LIBLOG)
  14.     make $(i386) >> $(LIBLOG)
  15.     cd ..\COMPLIB      
  16.     make $(i386)  >> $(LIBLOG)
  17.     cd ..\CTYPE        
  18.     make $(i386)  >> $(LIBLOG)
  19.     cd ..\DATA         
  20.     make $(i386)  >> $(LIBLOG)
  21.     cd ..\IO           
  22.     make $(i386)  >> $(LIBLOG)
  23.     cd ..\MATH         
  24.     make $(i386)  >> $(LIBLOG)
  25.     cd ..\PROCONT      
  26.     make $(i386)  >> $(LIBLOG)
  27.     cd ..\SORT         
  28.     make $(i386)  >> $(LIBLOG)
  29.     cd ..\MSDOS      
  30.     make $(i386)  >> $(LIBLOG)
  31.     cd ..\STRING       
  32.     make $(i386)  >> $(LIBLOG)
  33.     cd ..\TIME         
  34.     make $(i386)  >> $(LIBLOG)
  35.     cd ..\object
  36.     del    $(TARGNAME).lib
  37.     tlib    $(TARGNAME) @$(LIBLIST) >> $(LIBLOG)
  38.     cd ..